Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8844803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T11:34:43+00:00 2026-06-14T11:34:43+00:00

I’m trying to program the tar function but i have some problem. I want

  • 0

I’m trying to program the tar function but i have some problem.
I want to read my tar file and parse header data.
here is my structure

struct header { 
    char nom[100];
    char droits[3];
    char taille[12];
    char date_modif[12];
    char type[1];
};

And now my code to parse header data :

while ( fread(head.nom, 100, 1, archive) != 0 ){

    printf("NOM : %s\n", head.nom);


    //droits
    fread(head.droits, 3, 1, archive);


    printf("DROITS : %s\n", head.droits);

    //taille
    fread(head.taille, 12, 1, archive);

    printf("TAILLE : %s\n", head.taille);


    //last modif
    fread(head.date_modif, 12, 1, archive);

    printf("MODIF : %s\n", head.date_modif);


    //type
    fread(head.type, 1, 1, archive);

    printf("TYPE : %s\n", head.type);

    printf("NOM : %s\n", head.nom);

    exit(1);
    // on se place a la fin du premier fichier
    fseek(archive, oct2dec(atoi(head.taille)), SEEK_CUR);


    //fprintf(stdout, "%s %d \n", head.nom, oct2dec(atoi(head.taille)));        

    i++;
}

And the result is :

NOM : a.txt...............................................................................................
DROITS : 664
TAILLE : 936.........
MODIF : 1352910882..
TYPE : 1
NOM : a.txt...............................................................................................664936.........1352910882..1

My problem is that the last line display all my data and I want to display only a.txt…. (like in the first line).
How can I do to fix this problem ?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T11:34:44+00:00Added an answer on June 14, 2026 at 11:34 am

    This is a buffer overflow issue. You should increase the size of nom to be able to hold the null character. I don’t know about the tar function but an example,

    struct header { 
        char nom[200];
        char droits[10];
        char taille[20];
        char date_modif[20];
        char type[5];
    };
    

    You should always declare the size of a char string to be 1 more than the maximum expected length to allow for the null character.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a French site that I want to parse, but am running into
I want to construct a data frame in an Rcpp function, but when I
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I have just tried to save a simple *.rtf file with some websites and
i want to parse a xhtml file and display in UITableView. what is the
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I want to count how many characters a certain string has in PHP, but
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I have been unable to fix a problem with Java Unicode and encoding. The
I am trying to render a haml file in a javascript response like so:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.